home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Assess.Dxr / Internal_41_Sound Handlers.ls < prev    next >
Encoding:
Text File  |  1998-04-24  |  1.3 KB  |  75 lines

  1. on keepLittleSounds
  2.   set vList to ["mouseDown.aif", "boing.aif", "boing2.aif", "digiring.aif", "wood block", "thingset", "swoosh", "ding.aif", "quickclick", "twing.aif"]
  3.   repeat with vSound in vList
  4.     set the purgePriority of member vSound to 1
  5.   end repeat
  6. end
  7.  
  8. on soundOrNext
  9.   if soundBusy(2) then
  10.     go(the frame)
  11.   else
  12.     go(the frame + 1)
  13.   end if
  14. end
  15.  
  16. on HandlePuppetSound stringParam
  17.   stopSounds()
  18.   puppetSound(string(stringParam))
  19.   updateStage()
  20.   repeat while soundBusy(1)
  21.     if the mouseDown then
  22.       puppetSound(0)
  23.     end if
  24.     updateStage()
  25.   end repeat
  26.   stopSounds()
  27.   updateStage()
  28. end
  29.  
  30. on HandlePuppetSoundNS stringParam
  31.   stopSounds()
  32.   puppetSound(string(stringParam))
  33.   updateStage()
  34.   DelaySome(15)
  35.   repeat while soundBusy(1)
  36.     updateStage()
  37.   end repeat
  38.   stopSounds()
  39.   updateStage()
  40. end
  41.  
  42. on soundClicker playsound
  43.   global gClicked
  44.   if soundBusy(1) then
  45.     puppetSound(0)
  46.   else
  47.     puppetSound(playsound)
  48.     set gClicked to the clickOn
  49.   end if
  50.   if the clickOn <> gClicked then
  51.     puppetSound(playsound)
  52.     set gClicked to the clickOn
  53.   end if
  54. end
  55.  
  56. on stopSounds
  57.   sound stop 1
  58.   sound stop 2
  59.   puppetSound(0)
  60.   updateStage()
  61. end
  62.  
  63. on stopSound2
  64.   if soundBusy(2) then
  65.     sound stop 2
  66.   end if
  67. end
  68.  
  69. on DelaySome howLong
  70.   startTimer()
  71.   repeat while the timer < howLong
  72.     nothing()
  73.   end repeat
  74. end
  75.